home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_quake / polyed16.zip / HOWTO.TXT < prev    next >
Text File  |  1996-09-16  |  24KB  |  617 lines

  1. Here is the PolyEd How To Guide on making a level.
  2. Basically I will put a few points in to get you started, and the rest is all butchered qspecs..  my thanks and appologies to Niklata, Oliver Montunay, and the others.
  3.  
  4. First, you need a texture wad.  Download quaketex.zip with the quake101.wad.  This wad will have every texture from Quake version 1.01.  Hopefully it will be included in any CD you find with PolyEd on it.
  5.  
  6. Second, get Qbsp, Light, & Vis stuff.  They will all be in a qbsp package...  try cdrom.com in the qbsp_pak_tools section.  Get the ones for registerd version, and get either the DOS or the windows ones.  Make sure they are for the registered version.
  7.  
  8. Make a map, f3 to save a map file, and then at a dos prompt do this:
  9. qbsp mymap  {this will build it}
  10. light mymap {this will put the proper light sources in the right places}
  11. vis mymap {this will optomize kind of}
  12.  
  13. then copy the resulting bsp file to your id1/maps directory.  What?  you don't have a maps directory?  Well just make one.  Now go into quake, pull down the console and type: map mymap.  
  14.  
  15. cool, huh?
  16.  
  17. Notes on map making:
  18. This is not like doom.  You arn't building sectors, you're putting walls together, walls that have thickness.  Think of it as big slabs.  And remember, 4 walls are not enough to make a room, You must not forget to put a cieling and a floor in.
  19.  
  20. The following specs will guide you in making those flickering lights and teleport devices and all the other cool stuff.
  21.  
  22. ----------------------------------------
  23. Quake MAP Specs
  24.  
  25.  
  26. Last Updated: 8/22/96 8:52PM EST
  27.  
  28.  
  29. Info on entities/maps and maintenance by Niklata (Nicholas Dwarkanath)
  30.  
  31. Coordinate System:
  32.  
  33. Quake uses a standard right-handed (X,Y,Z) coordinate system. If you're not familiar with the reference of "right-handed" to a coordinate system, it basically provides a tactile and visual discription of the mechanics of the system. If you point your fingers towards the positive x-axis and bend your fingers so that your knuckles face the positive y-axis, your thumb will point towards the positive z-axis:
  34.  
  35.  
  36.         ^ z+
  37.         |
  38.         |
  39.         |
  40.         |
  41.         |------------> y+
  42.        /
  43.       /
  44.      /
  45.     /
  46.    <
  47.  x+
  48.  
  49.  
  50.  
  51. Some entities also need to have an angle tag that tells the direction it is facing. The values possible are listed below:
  52.  
  53.  
  54. 0-359: Normal Angle (zero == east)
  55. -1: Up
  56. -2: Down
  57.  
  58.  
  59.  
  60. Brushes:
  61.  
  62. Brushes are one of the two primary components of a MAP file. Each brush defines a solid region. Brushes define this region as the intersection of four or more planes. Each plane is defined by three noncolinear points. These points must go in a clockwise orientation:
  63.  
  64.  
  65. 1--2----------------->
  66. |
  67. 3
  68. |
  69. |
  70. |
  71. |
  72. |
  73. ,
  74.  
  75.  
  76. x_off     - Texture x-offset (must be multiple of 16)
  77. y_off     - Texture y-offset (must be multiple of 16)
  78. rot_angle - floating point value indicating texture rotation
  79. x_scale   - scales x-dimension of texture (negative value to flip)
  80. y_scale   - scales y-dimension of texture (negative value to flip)
  81. Many entity/brush combinations can be put into a map file. All MAP files must contain with a worldspawn entity, usually as the first entry. This entry defines all of the normal brushes that make up the structure of the level. There should be only one worldspawn entity per MAP file. Here's the syntax of the worldspawn class:
  82.  
  83.  
  84. "classname" "worldspawn" // Tells Quake to spawn the world
  85. "wad" "DIRPATH"          // tells what graphics (texture) WAD2 file to use.
  86. "message" "TITLE"        // The title of the level
  87. "worldtype" "#"          // Describes time of environment (changes appearance/name of keys)
  88.                          // 0 == Medieval (medieval)
  89.                          // 1 == Runic (metal)
  90.                          // 2 == Present (base)
  91. "sounds" "#"             // Tells the CD player which track to play.
  92. "light" "#"              // Default light level
  93.  
  94.  
  95. Entities are the second major component of Quake MAP files. An entity is basically a bit like a thing, but they also function as triggers and as pathmarkers. 
  96.  
  97. "spawnflags" tag: 
  98.  
  99. General:
  100.  
  101. 256  - Normal Skill or higher
  102. 512  - Hard Skill or higher
  103. 1792 - Appears in deathmatch only
  104.  
  105. item_health:
  106. 1    - Larger Health/Larger Ammo
  107. 2    - Megahealth
  108.  
  109. monster_zombie:
  110. 1    - Crucified Zombie
  111.  
  112.  
  113.  
  114. General Entity syntax:
  115.  
  116. Specifics    Args      Description
  117. --------------------------------------------------------------------------------
  118. "classname"  "name"    // Type of entity to be defined (mandatory)
  119. "origin"     "X Y Z"   // Coordinates of where it starts in space.
  120. "angle"      "#"       // Direction it faces or moves (sometimes in degrees)
  121. "light"      "#"       // Used with the light classname.
  122. "target"     "t#"      // Matches a targetname.
  123. "targetname" "t#"      // Like a linedef tag.
  124. "killtarget" "#"       // Removes target when triggered?
  125. "spawnflags" "#"       // Used to flag/describe an entity that is not default.
  126. "style"      "#"       // Used to flag/describe an entity that is not default.
  127. "message"    "string"  // Message displayed when triggered (\n for linebreaks)
  128. "mangle"     "X Y Z"   // Point where the intermission camera looks at
  129.  
  130. specifics/args present only in models:
  131.  
  132. "speed"      "#"       // How fast the model is moved.
  133. "wait"       "#"       // How long a pause between completion of movement or
  134.                        // return to original position (in seconds or 10ths)
  135. "lip"        "#"       // Seems to be a means of adjusting the starting position.
  136. "dmg"        "#"       // How much damage the model causes when it shuts on you?
  137. "health"     "#"       // How much damage the model takes before it triggers
  138. "delay"      "#"       // Time before event is triggered
  139. "sounds"     "#"       // How much damage the model causes when it shuts on you?
  140. "wad"        "wadfile" // The wad2 graphics file used by the world for textures.
  141. "height"     "#"       // How high a platform will raise
  142.  
  143. All known entities (current for Shareware Quake 1.01):
  144.  
  145.  
  146. air_bubbles                   : Rising bubbles
  147.  
  148. ambient_drip                  : Dripping sound
  149. ambient_drone                 : Engine/machinery sound
  150. ambient_comp_hum              : Computer background sounds
  151. ambient_flouro_buzz           : Flourescent buzzing sound
  152. ambient_light_buzz            : Buzzing sound from light
  153. ambient_suck_wind             : Wind sound
  154. ambient_swamp1                : Frogs croaking
  155. ambient_swamp2                : Slightly different sounding frogs croaking
  156. ambient_thunder               : Thunder sound
  157.  
  158. event_lightning               : Lightning (Used to kill Cthon, shareware boss)
  159.  
  160. func_door                     : Door
  161. func_door_secret              : A door that is triggered to open
  162. func_wall                     : A moving wall?
  163. func_button                   : A button
  164. func_train                    : A platform (moves along a "train")
  165. func_plat                     : A lift/elevator
  166. func_dm_only                  : A teleporter that only appears in deathmatch
  167. func_illusionary              : Creates brush that appears solid, but isn't.
  168.  
  169. info_null                     : Used as a placeholder (removes itself)
  170. info_notnull                  : Used as a placeholder (does not remove itself)
  171. info_intermission             : Cameras positioning for intermission (?)
  172. info_player_start             : Main player starting point (only one allowed)
  173. info_player_deathmatch        : A deathmatch start (more than one allowed)
  174. info_player_coop              : A coop player start (more than one allowed)
  175. info_player_start2            : Return point from episode
  176. info_teleport_destination     : Gives coords for a teleport destination using a targetname
  177.  
  178. All item_ tags may have a target tag.  It triggers 
  179. the event when the item is picked up.
  180.  
  181. item_cells                    : Ammo for the Thunderbolt
  182. item_rockets                  : Ammo for Rocket/Grenade Launcher
  183. item_shells                   : Ammo for both Shotgun and SuperShotgun
  184. item_spikes                   : Ammo for Perforator and Super Perforator
  185. item_weapon                   : Generic weapon class
  186. item_health                   : Medkit
  187. item_artifact_envirosuit      : Environmental Protection Suit
  188. item_artifact_super_damage    : Quad Damage
  189. item_artifact_invulnerability : Pentagram of Protection
  190. item_artifact_invisibility    : Ring of Shadows (Invisibility)
  191. item_armorInv                 : Red armor
  192. item_armor2                   : Yellow armor
  193. item_armor1                   : Green armor
  194. item_key1                     : Silver Key
  195. item_key2                     : Gold Key
  196. item_sigil                    : Sigil (a rune)
  197.  
  198. light                         : A projected light. No visible lightsource.
  199. light_torch_small_walltorch   : Small wall torch (gives off light)
  200. light_flame_large_yellow      : Large yellow fire (gives off light)
  201. light_flame_small_yellow      : Small yellow fire (gives off light)
  202. light_flame_small_white       : Small white fire  (gives off light)
  203. light_fluoro                  : Fluorescent light? (Gives off light, humming sound?)
  204. light_fluorospark             : Fluorescent light? (Gives off light, makes sparking sound)
  205. light_globe                   : Light that appears as a globe sprite
  206.  
  207. monster_army                  : Grunt
  208. monster_dog                   : Attack dog
  209. monster_ogre                  : Ogre
  210. monster_ogre_marksman         : Ogre (synonymous with monster_ogre)
  211. monster_knight                : Knight
  212. monster_zombie                : Zombie
  213. monster_wizard                : Scragg (Wizard)
  214. monster_demon1                : Fiend (Demon)
  215. monster_shambler              : Shambler
  216. monster_boss                  : Cthon (Boss of Shareware Quake)
  217. monster_enforcer              : Enforcer
  218. monster_hell_knight           : Hell Knight
  219. monster_shalrath              : Shalrath
  220. monster_tarbaby               : Slime
  221. monster_fish                  : Fish
  222. monster_oldone                : Shubb-Niggurath
  223.                                        (requires a misc_teleportrain and a info_intermission)
  224.  
  225. misc_fireball                 : Small fireball (gives off light, harms player)
  226. misc_explobox                 : Large Nuclear Container
  227. misc_explobox2                : Small Nuclear Container
  228. misc_teleporttrain            : Spiked ball needed to telefrag monster_oldone
  229.  
  230. path_corner                   : Used to define path of func_train platforms
  231.  
  232. trap_spikeshooter             : Shoots spikes (nails)
  233. trap_shooter                  : Fires nails without needing to be triggered.
  234.  
  235. trigger_teleport              : Teleport (all trigger_ tags are triggered by walkover)
  236. trigger_changelevel           : Changes to another level
  237. trigger_setskill              : Changes skill level
  238. trigger_counter               : Triggers action after it has been triggered count times.
  239. trigger_once                  : Triggers action only once
  240. trigger_multiple              : Triggers action (can be retriggered)
  241. trigger_onlyregistered        : Triggers only if game is registered (registered == 1)
  242. trigger_secret                : Triggers action and awards secret credit.
  243. trigger_monsterjump           : Causes triggering monster to jump in a direction
  244. trigger_relay                 : Allows delayed/multiple actions from one trigger 
  245. trigger_push                  : Pushes a player in a direction (like a windtunnel)
  246. trigger_hurt                  : Hurts whatever touches the trigger
  247.  
  248. weapon_supershotgun           : Super Shotgun
  249. weapon_nailgun                : Perforator
  250. weapon_supernailgun           : Super Perforator
  251. weapon_grenadelauncher        : Grenade Launcher
  252. weapon_rocketlauncher         : Rocket Launcher
  253. weapon_lightning              : Lightning Gun
  254.  
  255.  
  256.  
  257.  
  258. Entity 'class' examples
  259.  
  260.  
  261. Lights
  262.  
  263. For all light-emmitting entities, spawnflags and style have special meanings:
  264.  
  265.  
  266. Spawnflags:
  267. 0 - Light starts on.  Switches off when triggered.
  268. 1 - Light starts off.  Switches on when triggered.
  269.  
  270. Style:
  271. 0  - normal
  272. 1  - flicker (first variety)
  273. 2  - slow strong pulse
  274. 3  - candle (first variety)
  275. 4  - fast strobe
  276. 5  - gentle pulse
  277. 6  - flicker (second variety)
  278. 7  - candle (second variety)
  279. 8  - candle (third variety)
  280. 9  - slow strobe
  281. 10 - flourescent flicker
  282. 11 - slow pulse, not fading to black
  283.    
  284.    styles 32-62 are assigned by the light program for switchable lights
  285.  
  286. 63 - testing
  287.  
  288.  
  289. Regular Light:
  290.  
  291.  
  292.     "classname" "light"
  293.     "light" "#"         // Tells how bright the light is (optional - default 200)
  294.     "style" "#"         // How the light appears
  295.     "spawnflags" "#"    // State light starts in
  296.     "targetname" "#"    // Target id of the light
  297.  
  298.  
  299. Fluorescent Light:
  300.  
  301.     "classname" "light_fluoro"
  302.     "light" "#"         // Tells how bright the light is (optional - default 200)
  303.     "style" "#"         // How the light appears
  304.     "spawnflags" "#"    // State light starts in
  305.     "targetname" "#"    // Target id of the light
  306.  
  307. Fluorescent Light (makes sparking sound):
  308.     "classname" "light_fluorospark"
  309.     "light" "#"         // Tells how bright the light is (optional - default 200)
  310.     "style" "#"         // How the light appears
  311.     "spawnflags" "#"    // State light starts in
  312.     "targetname" "#"    // Target id of the light
  313.  
  314. Torches:
  315.  
  316.     "classname" "light_torch_small_walltorch"
  317.     "light" "#"         // Tells how bright the light is (optional - default 200)
  318.     "style" "#"         // How the light appears
  319.     "spawnflags" "#"    // State light starts in
  320.     "targetname" "#"    // Target id of the light
  321.  
  322. Fire:
  323.  
  324. "classname" "light_flame_large_yellow, light_flame_small_yellow, light_flame_small_white"
  325. "light" "#"         // Tells how bright the light is (optional)
  326. "origin" "X Y Z"
  327.  
  328.  
  329.  
  330. Player Movement Entities
  331.  
  332.  
  333. Level Change Trigger (attaches to brush):
  334.  
  335.     "classname" "trigger_changelevel"
  336.     "map" "mapname"  // Map to change to on trigger (e.g. e1m8)
  337.     "spawnflags" "#" // Flags describing the object (optional)
  338.  
  339. Teleport Trigger (attaches to brush):
  340.  
  341.     "classname" "trigger_teleport"
  342.     "target" "t#"     // Teleport destination name to teleport to.
  343.     "targetname" "t#" // Trigger name (optional) - only teleports once
  344.                                              activated if targetname is present.
  345. Teleport Destination:
  346.  
  347.     "classname" "info_teleport_destination"
  348.     "angle" "#"       // angle the player will face upon leaving teleport
  349.     "targetname" "t#" // Teleport's trigger name
  350.  
  351.  Movers
  352.  
  353.  
  354. Door (attaches to brush):
  355.  
  356.     "classname" "func_door, func_door_secret"
  357.     "angle" "#"      // angle it faces
  358.     "speed" "#"      // speed of movement
  359.     "targetname" "#" // Door's trigger name
  360.     "sounds" "#"     // sound it makes
  361.     "wait" "#"       // delay before closing
  362.     "spawnflags "#"       // Flags describing the object (optional)
  363.     "lip" "#"        // some kind of offset (optional)
  364.  
  365. Spawns on certain skill levels (controlled by spawnflags), can be removed by a trigger. (attaches to brush):
  366.  
  367.     "classname" "func_wall"
  368.     "spawnflags" "#" // flags for something (optional I'd guess)
  369.  
  370. A platform (i.e. lift or elevator, attaches to brush):
  371.  
  372.     "classname" "func_plat"
  373.     "height" "#" // height it rises? (optional)
  374.     "sounds" "#" // sound it makes (optional)
  375.  
  376. Moving platform (Attaches to brush):
  377.  
  378.     "classname" "func_train"
  379.     "sounds" "#"      // Sound it makes when activated
  380.     "speed" "#"       // Speed at which it moves (optional)
  381.     "target" "t#"     // Trigger name of its first path_corner destination
  382.     "targetname" "t#" // Its trigger name
  383.     "dmg" "#"         // Damage done on crush
  384.  
  385. Describes path of train/monsters:
  386.  
  387.     "classname" "path_corner"
  388.     "origin" "X Y Z"
  389.     "target" "t#"     // Trigger name of next train destination.
  390.     "targetname" "t#" // It's trigger name.
  391.  
  392.  
  393.  
  394.  
  395. Triggers/Switches
  396.  
  397.  
  398. A button/switch (attaches to brush):
  399.  
  400.     "classname" "func_button"
  401.     "angle" "#"   // Angle button moves?
  402.     "speed" "#"   // Speed it moves in?
  403.     "target" "t#" // Trigger name of target entity
  404.     "health" "#"  // If there is health, button is shootable
  405.     "sounds" "#"  // Sound it makes when activated
  406.                                       // 1 == Steam Metal
  407.                                       // 2 == Wooden Clunk
  408.                                       // 3 == Metallic Click
  409.                                       // 4 == In-Out
  410.     "wait" "#"    // Wait until retrigger? (-1 stays pressed)
  411.     "delay" "#"   // Delay before action is triggered
  412.  
  413. Walk-over trigger (attaches to brush):
  414.  
  415.     "classname" "trigger_once, trigger_multiple, trigger_onlyregistered, trigger_secret"
  416.     "style" "#"       // 32 works
  417.     "killtarget" "t#" // Kills something [for triggering monster events] (optional)
  418.     "target" "t#"     // Trigger name of target
  419.     "sounds" "#"      // Sound made when triggered
  420.                                           // 1 == Secret Sound
  421.                                           // 2 == Beep Beep
  422.                                           // 3 == Large Switch
  423.                                           // 4 == Set "message" to text string
  424.     "wait" "#"        // Delay before retrigger. some classes only. (optional)
  425.     "delay" "#"       // Delay before action is triggered
  426.  
  427.  
  428. Triggers target after it is triggered count times:
  429.  
  430.     "classname" "trigger_counter" 
  431.     "targetname" "t#" // Its trigger name
  432.     "target" "t#"     // Trigger name of its target
  433.     "count" "#"       // Decrements on each trigger.  When 0 activates target.
  434.     "wait" "#"        // Required delay before retrigger
  435.     "delay" "#"       // Delay before action is triggered
  436.  
  437. Used to stagger events on a trigger:
  438.  
  439.     "classname" "trigger_relay"
  440.     "origin" "X Y Z"  // Where it is located
  441.     "killtarget" "#"  // Removes targeted entity (optional)
  442.     "targetname" "t#" // Its trigger name
  443.     "target" "t#"     // Trigger name of its target
  444.     "delay" "#"       // Delay before action is triggered
  445.  
  446. Makes a monster jump when it reaches a brush:
  447.  
  448.     "classname" "trigger_monsterjump"
  449.     "speed" "#"       // Forward velocity of the monster jump
  450.     "height" "#"      // How high the monster jumps
  451.     "angle" "#"       // Angle towards which the monster jumps
  452.  
  453. An invisible brush?:
  454.  
  455.     "classname" "func_illusionary"
  456.  
  457.  
  458.  
  459.  
  460. Traps/Things harmful to you:
  461.  
  462.  
  463. Triggerable Nail-firing trap:
  464.  
  465.     "classname" "trap_spikeshooter"
  466.     "angle" "#"       // Angle the trap fires at
  467.     "targetname" "t#" // Trap's trigger name
  468.     "spawnflags" "#"  // ??? 1024 works
  469.  
  470. Constant Nail-firing trap:
  471.  
  472.  
  473.     "classname" "trap_shooter"
  474.     "angle" "#"       // Angle the trap fires at
  475.     "spawnflags" "#"  // ??? 1024 works
  476.     "wait" "#"        // Time between shots
  477.  
  478. Fireballs:
  479.  
  480.     "classname" "misc_fireball"
  481.     "speed" "#" // Tells how fast the fireball moves
  482.  
  483.  
  484.  
  485. Miscellaneous:
  486.  
  487.  
  488.  
  489. Pushes the player in a direction:
  490.  
  491.     "classname" "trigger_push"
  492.     "speed" "#"       // Force of the push
  493.     "angle" "#"       // Direction player is pushed towards (-1=up -2=down, other=normal)
  494.  
  495. Cameras for the intermission screen:
  496.  
  497.  
  498.     "classname" "info_intermission"
  499.     "mangle" "X Y Z" // location the camera looks at
  500.     "angle" "#"      // angle of the camera
  501.  
  502. Setting difficulty level (attaches to brush):
  503.     "classname" "trigger_setskill"
  504.     "message" "#"   // Skill level to change to.
  505.  
  506.  
  507. Lightning used to kill the boss of shareware.  I'll figure out how to use
  508. it later...  I pretty much know how, I just want to test it before I
  509. put it here :).  From the testing I've done, the lightning produced will
  510. not damage a player, however.  It probably triggers a script to give the
  511. boss character damage.
  512.  
  513.     "classname" "event_lightning"
  514.     "origin" "X Y Z"  // location of lightning (origin?)
  515.     "targetname" "t#" // It's trigger name
  516.  
  517.  
  518.  
  519.  
  520.  Level Structures
  521.  
  522.  
  523.  Moving Platforms:
  524.  
  525.  
  526. Creating a moving platform isn't that difficult.   Here's an example:
  527.  
  528.  
  529. "classname" "func_train"
  530. "sounds" "1"
  531. "speed" "128"
  532. "target" "t1dest1"
  533. "targetname" "t1"
  534.  
  535. (attach it to brush)
  536.  
  537. Now you define each of the path_corners it will travel to.  When it reaches
  538. a path_corner, it will float to the next path_corner defined in the target
  539. tag of the path_corner.  The platform will start at the path_corner pointed
  540. to by the platform's target tag.  It will continue the loop indefinitely
  541. and it will go through walls to get to its destination.  Here's its path_corners
  542. would look like:
  543.  
  544. "classname" "path_corner"
  545. "targetname" "t1dest1"
  546. "target"" "t1dest2"
  547.  
  548. "classname" "path_corner"
  549. "origin" "0 128 0"
  550. "targetname" "t1dest2"
  551. "target"" "t1dest1"
  552.  
  553. Monsters and Triggers:
  554.  
  555.  
  556. Have you been wondering how you can get events to trigger when a monster dies, as first
  557. seen in E1M2 with the demons?  Well, it's not too difficult.  When you attach a
  558. target tag to a monster, the monster's death will trigger the event.  I believe
  559. (not tested) that if other monsters have a targetname tag the same as a monster
  560. with the target tag, the target event will only occur when all monsters with
  561. a matching targetname tag are dead.  The monster with the target tag need not
  562. have the targetname tag.
  563.  
  564.  
  565.  
  566. How to use trigger_count:
  567.  
  568. The trigger_count class is quite an interesting trigger. You know of the area in E1M1 where you have to hit the three switches to open the door? Well, that's done using a trigger_counter. Each of the buttons you hit has its target property set so it points to a trigger_counter. The trigger_counter has its count tag set to three. Each time a switch is hit, the trigger_counter's count property will decrement by one. When it reaches zero, it will open the door. Each button can only be triggered once as it has a wait of -1. Here's an example given to me by Remco Stoffer:
  569.  
  570.  
  571.  "classname"    "func_door"
  572.  "targetname"    "door2"
  573.  "target"        "light1"
  574.  "angle"    "-1"
  575.  "wait" "-1"
  576.  "sounds" "4"
  577.  "message"   "press all buttons"
  578.  
  579.  "classname"      "trigger_counter"
  580.  "count"          "3"
  581.  "targetname"     "door1"
  582.  "target"         "door2"
  583.  "wait"           "-1"
  584.  
  585.  "classname"      "func_button"
  586.  "angle"          "0"
  587.  "wait"           "-1"
  588.  "target"         "door1"
  589.  
  590.  "classname"      "func_button"
  591.  "angle"          "0"
  592.  "wait"           "-1"
  593.  "target"         "door1"
  594.  
  595.  "classname"      "func_button"
  596.  "angle"          "0"
  597.  "wait"           "-1"
  598.  "target"         "door1"
  599.  
  600.  
  601. Teleporting Monsters:
  602.  
  603. Unlike in Doom-Engine games, you can precisely teleport monsters into new locations in Quake. To do so, you must first create a out of reach area for the monsters to reside in. Give this area a trigger_teleport tag and assign a targetname tag to it. Create a teleport_destination where you want the monster to appear. Now, you must create a trigger whose target property points to the trigger_teleport's targetname. When this trigger is activated, the monster in the room will teleport to the teleport_destination. Make sure that there is only one monster per room and one room per teleport_destination. Otherwise, when the teleport is triggered, all the monsters will telefrag each other (like what happens in E1M7 when you win).
  604.  
  605. Properties of Buttons:
  606.  
  607. The behavior of buttons can be altered in many ways. By default, buttons are activated by pressing them (moving near them). Buttons can be made shootable by giving them a health tag. Unless you want to have to shoot the button tons of times, set the health tag to "1". If you want to have the button flash when you shoot it, you must include all of the button animation textures in the level. You can just put them on brushes outside the level. 
  608.  
  609.  
  610. ------------------------------------------------------------------------
  611.  
  612.  
  613. Quake is ⌐1996 id Software. Some information about entities was obtained from the Unofficial Quake Specs, a truly awesome reference guide to Quake editing.
  614.  
  615. Disclaimer: This document is provided as is and may not be perfect. I do not guarentee the validity of any of the information in it. I will not be held liable or responsible for any damages caused from use or misuse of the information contained within this document.
  616.  
  617.